An IOException is thrown and caught by the program.
write()
Method
With FileWriter
use the
write()
write()
Writer
and OutputStreamWriter
.
The example program uses the methods that
writes characters from a string:
public void write(String str) throws IOException
To output numerical results as characters use string concatenation:
int answer; . . . stream.write( "The answer is: " + answer)